home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 5 / Gold Medal Software - Volume 5 (Gold Medal) (1995).iso / windows / win31 / cenviw.arj / ASCII.CMM next >
Text File  |  1994-03-08  |  559b  |  20 lines

  1. /***************************************************
  2.  *** Ascii.cmm - Display the ASCII character set ***
  3.  *** ver.1                                       ***
  4.  ***************************************************/
  5.  
  6. #define  ROW_COUNT      20
  7. #define  COL_COUNT      13
  8.  
  9. Unprintables = "\a\b\t\r\n\032\033"
  10. for ( row = 0; row < ROW_COUNT; row++ ) {
  11.    for ( col = 0; col < COL_COUNT; col++ ) {
  12.       c = ROW_COUNT*col + row
  13.       if c < 256
  14.          printf("%c-%-3d ",(NULL==strchr(Unprintables,c))?c:'.',c)
  15.    }
  16.    printf("\n")
  17. }
  18.  
  19. getch();
  20.